.map-section {
    padding: 20px;
    text-align: center;
    background: #f0f0f0;
}

.section__title {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.description {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #666;
}

.map-container {
    width: 80%;
    height: 450px;
    margin: 0 auto;
    border: 5px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s ease-in-out;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.marker-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: url('marker-icon.png') no-repeat center center;
    background-size: contain;
    animation: bounce 2s infinite;
    transform: translate(-50%, -50%);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

/* Footer Section */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}